home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970326-19970626 / 000339_news@newsmaster….columbia.edu _Sat Jun 21 12:21:16 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id MAA26570
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sat, 21 Jun 1997 12:21:15 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id MAA11450
  7.     for kermit.misc@watsun; Sat, 21 Jun 1997 12:21:14 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: ShellExecute()
  12. Date: 21 Jun 1997 16:21:02 GMT
  13. Organization: Columbia University
  14. Lines: 31
  15. Message-ID: <5ogv1e$b5o$1@newsmaster.cc.columbia.edu>
  16. References: <33a9fbb4.471671067@news.rochester.ican.net> <33aa9b09.2490401@news.opus1.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7202
  19.  
  20. In article <33aa9b09.2490401@news.opus1.com>,
  21. Erik Hatcher <hatcher@flash.net> wrote:
  22. : Why re-invent the wheel folks???
  23. : Win95 and WinNT 4.0 both have a way of doing this without writing a
  24. : new program.  Its the "start" command.
  25. There is no need to continue this thread.  The next release of K-95 will
  26. have an interface to ShellExecute().  If it works for you, you'll like 
  27. it.  If it doesn't (and experimentation shows that this API is not the
  28. panacea that many have made it out to be), you'll still be able to specify
  29. a particular browser and get the current behavior.
  30.  
  31. : I tried it by using "start http://www.pvsoftware.com" and it
  32. : worked by opening that page in the *already* opened browser (IE 3).
  33. And you can also do this (in any recent K95 version):
  34.  
  35.   define URL {
  36.       run start \v(select)
  37.       if terminal-macro connect
  38.   }
  39.   set mouse button 1 alt drag \Kurl
  40.  
  41. Select a URL with Alt-drag mouse button 1 and there you are.
  42.  
  43. But this, again, begs the question of whether ShellExecute(blah) works
  44. for you, where blah is a URL.  It does not work for everybody.  Believe
  45. me.
  46.  
  47. - Frank